home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / RCS / SharedMemory.h,v < prev    next >
Text File  |  1989-02-23  |  1KB  |  104 lines

  1. head     3.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    grunwald:3.2; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 3.2
  10. date     89.02.20.15.37.24;  author grunwald;  state Exp;
  11. branches ;
  12. next     3.1;
  13.  
  14. 3.1
  15. date     88.12.20.13.50.16;  author grunwald;  state Exp;
  16. branches ;
  17. next     1.3;
  18.  
  19. 1.3
  20. date     88.10.30.13.06.04;  author grunwald;  state Exp;
  21. branches ;
  22. next     1.2;
  23.  
  24. 1.2
  25. date     88.09.28.22.13.54;  author grunwald;  state Exp;
  26. branches ;
  27. next     1.1;
  28.  
  29. 1.1
  30. date     88.09.18.16.42.15;  author grunwald;  state Exp;
  31. branches ;
  32. next     ;
  33.  
  34.  
  35. desc
  36. @@
  37.  
  38.  
  39. 3.2
  40. log
  41. @Start using Gnu library heaps for schedulers
  42. @
  43. text
  44. @// This may look like C code, but it is really -*- C++ -*-
  45. // 
  46. // Copyright (C) 1988 University of Illinois, Urbana, Illinois
  47. //
  48. // written by Dirk Grunwald (grunwald@@cs.uiuc.edu)
  49. //
  50. #ifndef Share_h
  51. #define Share_h
  52. //
  53. //    If shared memory has been allocated, then this is the
  54. //    maximum break address.
  55. //
  56. void SharedMemoryInit( unsigned extra );
  57. #endif /* Share_h */
  58. @
  59.  
  60.  
  61. 3.1
  62. log
  63. @Steay version
  64. @
  65. text
  66. @@
  67.  
  68.  
  69. 1.3
  70. log
  71. @*** empty log message ***
  72. @
  73. text
  74. @@
  75.  
  76.  
  77. 1.2
  78. log
  79. @*** empty log message ***
  80. @
  81. text
  82. @d1 6
  83. @
  84.  
  85.  
  86. 1.1
  87. log
  88. @Initial revision
  89. @
  90. text
  91. @a2 1
  92.  
  93. a3 5
  94. //    Has shared memory been allocated? Used by malloc to determine
  95. //    if it's safe to sbrk or not.
  96. //
  97. extern unsigned SharedMemoryAllocated;
  98. //
  99. a6 1
  100. extern char *SharedMemoryBreak;
  101. a7 1
  102.  
  103. @
  104.